home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9310.ZIP / DFPP03.ZIP / SPEAKER.H < prev    next >
C/C++ Source or Header  |  1992-11-21  |  203b  |  17 lines

  1. // --------- speaker.h
  2.  
  3. #ifndef SPEAKER_H
  4. #define SPEAKER_H
  5.  
  6. class Speaker    {
  7. public:
  8.     void Beep();
  9. };
  10.  
  11. const int FREQUENCY = 100;
  12. const long COUNT = 1193280L / FREQUENCY;
  13.  
  14. #endif
  15.  
  16.  
  17.